home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / The Weakest Link / source / udp.cp < prev    next >
Encoding:
Text File  |  2001-06-23  |  349 b   |  31 lines

  1. #if 0
  2. int InitUDP()
  3. {
  4.     int            err = noErr;
  5.     
  6.     
  7. }
  8.  
  9. int CloseUDP()
  10. {
  11.  
  12.     return 0;
  13. }
  14.  
  15. int SendDNSResponse( UInt32 inDestAddr, UInt32 inWebPageAddr, /* packet id of some sort??? */ )
  16. {
  17.     int            err = noErr;
  18.     
  19.     
  20.     return( err );
  21. }
  22.  
  23. int SendUDPPacket( UInt32 inDestAddr, void *inPacket, UInt32 inPacketSize )
  24. {
  25.     int            err = noErr;
  26.     
  27.     
  28.     return( err );
  29. }
  30. #endif
  31.